home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1998 November / Freeware November 1998.img / dist / fw_emacs.idb / usr / freeware / info / mh-e-3.z / mh-e-3 (.txt)
GNU Info File  |  1998-10-27  |  49KB  |  838 lines

  1. This is Info file ../info/mh-e, produced by Makeinfo-1.63 from the
  2. input file mh-e.texi.
  3.    This is Edition 1.2, last updated 22 August 1995, of `mh-e, The
  4. Emacs Interface to MH', for mh-e, Version 5.0.2.
  5.    Copyright 1995 Free Software Foundation, Inc.
  6.    Permission is granted to make and distribute verbatim copies of this
  7. manual provided the copyright notice and this permission notice are
  8. preserved on all copies.
  9.    Permission is granted to copy and distribute modified versions of
  10. this manual under the conditions for verbatim copying, provided also
  11. that the section entitled "Copying" is included exactly as in the
  12. original, and provided that the entire resulting derived work is
  13. distributed under the terms of a permission notice identical to this
  14.    Permission is granted to copy and distribute translations of this
  15. manual into another language, under the above conditions for modified
  16. versions, except that this permission notice may be stated in a
  17. translation approved by the Free Software Foundation.
  18. File: mh-e,  Node: Customizing Organizing,  Next: Customizing Printing,  Prev: Customizing Deleting,  Up: Customizing Moving Mail
  19. Organizing Your Mail with Folders
  20. ---------------------------------
  21.    By default, operations on folders work only one level at a time.  Set
  22. `mh-recursive-folders' to non-`nil' to operate on all folders.  This
  23. mostly means that you'll be able to see all your folders when you press
  24. TAB when prompted for a folder name.  The variable
  25. `mh-auto-folder-collect' is normally turned on to generate a list of
  26. folder names in the background as soon as mh-e is loaded.  Otherwise,
  27. the list is generated when you need a folder name the first time (as
  28. with `o' (`mh-refile-msg')).  If you have a lot of folders and you have
  29. `mh-recursive-folders' set, this could take a while, which is why it's
  30. nice to do the folder collection in the background.
  31.    The function `mh-default-folder-for-message-function' is used by `o'
  32. (`mh-refile-msg') and `C-c C-f C-f' (`mh-to-fcc') to generate a default
  33. folder.  The generated folder name should be a string with a `+' before
  34. it.  For each of my correspondents, I use the same name for both an
  35. alias and a folder.  So, I wrote a function that takes the address in
  36. the `From:' header field, finds it in my alias file, and returns the
  37. alias, which is used as a default folder name.  This is the most
  38. complicated example given here, and it demonstrates several features of
  39. Emacs Lisp programming.  You should be able to drop this into
  40. `~/.emacs', however.  If you use this to store messages in a subfolder
  41. of your Mail directory, you can modify the line that starts `(format
  42. +%s...'  and insert your subfolder after the folder symbol `+'.
  43.      Creating useful default folder for refiling via mh-default-folder-for-message-function
  44.      
  45.      (defun my-mh-folder-from-address ()
  46.        "Determine folder name from address.
  47.      Takes the address in the From: header field, and returns its corresponding
  48.      alias from the user's personal aliases file. Returns `nil' if the address
  49.      was not found."
  50.        (require 'rfc822)                         ; for the rfc822 functions
  51.        (search-forward-regexp "^From: \\(.*\\)") ; grab header field contents
  52.        (save-excursion                     ; save state
  53.          (let ((addr (car (rfc822-addresses  ; get address
  54.                            (buffer-substring (match-beginning 1)
  55.                                              (match-end 1)))))
  56.                (buffer (get-buffer-create " *temp*")) ; set local variables
  57.                folder)
  58.            (set-buffer buffer)             ; jump to temporary buffer
  59.            (unwind-protect                 ; run kill-buffer when done
  60.                (progn                      ; function grouping construct
  61.                  (insert-file-contents (expand-file-name "aliases"
  62.                                                          mh-user-path))
  63.                  (goto-char (point-min))   ; grab aliases file and go to start
  64.                  (setq folder
  65.                        ;; Search for the given address, even commented-out
  66.                        ;; addresses are found!
  67.                        ;; The function search-forward-regexp sets values that are
  68.                        ;; later used by match-beginning and match-end.
  69.                        (if (search-forward-regexp (format "^;*\\(.*\\):.*%s"
  70.                                                           addr) nil t)
  71.                            ;; NOTE WELL: this is what the return value looks like.
  72.                            ;; You can modify the format string to match your own
  73.                            ;; Mail hierarchy.
  74.                            (format "+%s" (buffer-substring (match-beginning 1)
  75.                                                            (match-end 1))))))
  76.              (kill-buffer buffer))          ; get rid of our temporary buffer
  77.            folder)))                        ; function's return value
  78.      
  79.      (setq mh-default-folder-for-message-function 'my-mh-folder-from-address)
  80.    The hook `mh-refile-msg-hook' is called after a message is marked to
  81. be refiled.
  82.    The variable `mh-sortm-args' holds extra arguments to pass on to the
  83. `sortm' command.  Note: this variable is only consulted when a prefix
  84. argument is given to `M-x mh-sort-folder'.  It is used to override any
  85. arguments given in a `sortm:' entry in your MH profile
  86. (`~/.mh_profile').
  87. * Menu:
  88. * Customizing Scan Line Formats::
  89. File: mh-e,  Node: Customizing Scan Line Formats,  Prev: Customizing Organizing,  Up: Customizing Organizing
  90. Scan line formatting
  91. ....................
  92.    The name of the program that generates a listing of one line per
  93. message is held in `mh-scan-prog' (default: `"scan"').  Unless this
  94. variable contains an absolute pathname, it is assumed to be in the
  95. `mh-progs' directory.  You may link another program to `scan' (see
  96. `mh-profile'(5)) to produce a different type of listing.
  97.    If you change the format of the scan lines you'll need to tell mh-e
  98. how to parse the new format.  As you see, quite a lot of variables are
  99. involved to do that.  The first variable has to do with pruning out
  100. garbage.
  101. `mh-valid-scan-line'
  102.      This regular expression describes a valid scan line.  This is used
  103.      to eliminate error messages that are occasionally produced by
  104.      `inc' or `scan' (default: `"^ *[0-9]"').
  105.    Next, two variables control how the message numbers are parsed.
  106. `mh-msg-number-regexp'
  107.      This regular expression is used to extract the message number from
  108.      a scan line.  Note that the message number must be placed in quoted
  109.      parentheses, (\\(...\\)), as in the default of `"^ *\\([0-9]+\\)"'.
  110. `mh-msg-search-regexp'
  111.      Given a message number (which is inserted in `%d'), this regular
  112.      expression will match the scan line that it represents (default:
  113.      `"^[^0-9]*%d[^0-9]"').
  114.    Finally, there are a slew of variables that control how mh-e marks up
  115. the scan lines.
  116. `mh-cmd-note'
  117.      Number of characters to skip over before inserting notation
  118.      (default: 4).  Note how it relates to the following regular
  119.      expressions.
  120. `mh-deleted-msg-regexp'
  121.      This regular expression describes deleted messages (default:
  122.      `"^....D"').  See also `mh-note-deleted'.
  123. `mh-refiled-msg-regexp'
  124.      This regular expression describes refiled messages (default:
  125.      `"^....\\^"').  See also `mh-note-refiled'.
  126. `mh-cur-scan-msg-regexp'
  127.      This regular expression matches the current message (default:
  128.      `"^....\\+"').  See also `mh-note-cur'.
  129. `mh-good-msg-regexp'
  130.      This regular expression describes which messages should be shown
  131.      when mh-e goes to the next or previous message.  Normally, deleted
  132.      or refiled messages are skipped over (default: `"^....[^D^]"').
  133. `mh-note-deleted'
  134.      Messages that have been deleted to are marked by this string
  135.      (default: `"D"').  See also `mh-deleted-msg-regexp'.
  136. `mh-note-refiled'
  137.      Messages that have been refiled are marked by this string (default:
  138.      `"^"').  See also `mh-refiled-msg-regexp'.
  139. `mh-note-copied'
  140.      Messages that have been copied are marked by this string (default:
  141.      `"C"').
  142. `mh-note-cur'
  143.      The current message (in MH, not in mh-e) is marked by this string
  144.      (default: `"+"').  See also `mh-cur-scan-msg-regexp'.
  145. `mh-note-repl'
  146.      Messages that have been replied to are marked by this string
  147.      (default: `"-"').
  148. `mh-note-forw'
  149.      Messages that have been forwarded are marked by this string
  150.      (default: `"F"').
  151. `mh-note-dist'
  152.      Messages that have been redistributed are marked by this string
  153.      (default: `"R"').
  154. `mh-note-printed'
  155.      Messages that have been printed are marked by this string (default:
  156.      `"P"').
  157. `mh-note-seq'
  158.      Messages in a sequence are marked by this string (default: `"%"').
  159. File: mh-e,  Node: Customizing Printing,  Next: Customizing Files and Pipes,  Prev: Customizing Organizing,  Up: Customizing Moving Mail
  160. Printing Your Mail
  161. ------------------
  162.    Normally messages are printed in the foreground.  If this is slow on
  163. your system, you may elect to set `mh-print-background' to non-`nil' to
  164. print in the background.  If you do this, do not delete the message
  165. until it is printed or else the output may be truncated.  The variable
  166. `mh-lpr-command-format' controls how the printing is actually done.
  167. The string can contain one escape, `%s', which is filled with the name
  168. of the folder and the message number and is useful for print job names.
  169. As an example, the default is `"lpr -J '%s'"'.
  170. File: mh-e,  Node: Customizing Files and Pipes,  Next: Customizing Finishing Up,  Prev: Customizing Printing,  Up: Customizing Moving Mail
  171. Files and Pipes
  172. ---------------
  173.    The initial directory for the `mh-store-msg' command is held in
  174. `mh-store-default-directory'.  Since I almost always run `mh-store-msg'
  175. on sources, I set it to my personal source directory like this:
  176.      (setq mh-store-default-directory (expand-file-name "~/src/"))
  177.    Subsequent incarnations of `mh-store-msg' offer the last directory
  178. used as the default.  By the way, `mh-store-msg' calls the Emacs Lisp
  179. function `mh-store-buffer'.  I mention this because you can use it
  180. directly if you're editing a buffer that contains a file that has been
  181. run through `uuencode' or `shar'.  For example, you can extract the
  182. contents of the current buffer in your home directory by typing `M-x
  183. mh-store-buffer RET ~ RET'.
  184. File: mh-e,  Node: Customizing Finishing Up,  Prev: Customizing Files and Pipes,  Up: Customizing Moving Mail
  185. Finishing Up
  186. ------------
  187.    The two variables `mh-before-quit-hook' and `mh-quit-hook' are
  188. called by `q' (`mh-quit').  The former one is called before the quit
  189. occurs, so you might use it to perform any mh-e operations; you could
  190. perform some query and abort the quit or call `mh-execute-commands',
  191. for example.  The latter is not run in an mh-e context, so you might
  192. use it to modify the window setup.
  193. File: mh-e,  Node: Customizing Searching,  Prev: Customizing Moving Mail,  Up: Customizing mh-e
  194. Searching Through Messages
  195. ==========================
  196.    If you find that you do the same thing over and over when editing the
  197. search template, you may wish to bind some shortcuts to keys.  This can
  198. be done with the variable `mh-pick-mode-hook', which is called when
  199. `M-s' (`mh-search-folder') is run on a new pattern.
  200.    The string `mh-partial-folder-mode-line-annotation' is used to
  201. annotate the mode line when only a portion of the folder is shown.  For
  202. example, this will be displayed after running `M-s'
  203. (`mh-search-folder') to list messages based on some search criteria
  204. (see *Note Searching::).  The default annotation of `"select"' yields a
  205. mode line that looks like:
  206.      --%%-{+inbox/select} 2 msgs (2-3)      (MH-Folder)--All-----------------
  207. File: mh-e,  Node: Odds and Ends,  Next: History,  Prev: Customizing mh-e,  Up: Top
  208. Odds and Ends
  209. *************
  210.    This appendix covers a few topics that don't fit elsewhere.  Here I
  211. tell you how to report bugs and how to get on the mh-e mailing list.  I
  212. also point out some additional sources of information.
  213. * Menu:
  214. * Bug Reports::
  215. * Mailing List::
  216. * MH FAQ::
  217. * Getting mh-e::
  218. File: mh-e,  Node: Bug Reports,  Next: Mailing List,  Prev: Odds and Ends,  Up: Odds and Ends
  219. Bug Reports
  220. ===========
  221.    The current maintainer of mh-e is Stephen Gildea
  222. <gildea@lcs.mit.edu>.  Please mail bug reports directly to him, as well
  223. as any praise or suggestions.  Please include the output of `M-x
  224. mh-version' (*note Miscellaneous::.) in any bug report you send.
  225. File: mh-e,  Node: Mailing List,  Next: MH FAQ,  Prev: Bug Reports,  Up: Odds and Ends
  226. mh-e Mailing List
  227. =================
  228.    There is a mailing list, mh-e@x.org, for discussion of mh-e and
  229. announcements of new versions.  Send a "subscribe" message to
  230. mh-e-request@x.org to be added.  Do not report bugs on this list; mail
  231. them directly to the maintainer (*note Bug Reports::.).
  232. File: mh-e,  Node: MH FAQ,  Next: Getting mh-e,  Prev: Mailing List,  Up: Odds and Ends
  233. MH FAQ
  234. ======
  235.    An FAQ appears monthly in the newsgroup `comp.mail.mh'.  While very
  236. little is there that deals with mh-e specifically, there is an
  237. incredible wealth of material about MH itself which you will find
  238. useful.  The subject of the FAQ is `MH Frequently Asked Questions (FAQ)
  239. with Answers'.
  240.    The FAQ can be also obtained by anonymous `ftp' or via the World
  241. Wide Web (WWW).  It is located at:
  242.      ftp://rtfm.mit.edu/pub/usenet/news.answers/mail/mh-faq/part1
  243.      http://www.cis.ohio-state.edu/hypertext/faq/usenet/mail/mh-faq/part1/faq.html
  244.    Otherwise, you can use mail.  Send mail to mail-server@rtfm.mit.edu
  245. containing the following:
  246.      send usenet/news.answers/mail/mh-faq/part1
  247. File: mh-e,  Node: Getting mh-e,  Prev: MH FAQ,  Up: Odds and Ends
  248. Getting mh-e
  249. ============
  250.    If you're running a pre-4.0 version of mh-e, please consider
  251. upgrading.  You can either have your system administrator upgrade your
  252. Emacs, or just the files for mh-e.
  253.    The MH distribution contains a copy of mh-e in `miscellany/mh-e'.
  254. Make sure it is at least Version 4.0.
  255.    The latest version of mh-e can be obtained via anonymous `ftp' from
  256. `ftp.x.org'.  The file containing mh-e is currently
  257. `/misc/mh-e/mh-e-5.0.2.tar.Z'.  I suggest that you extract the files
  258. from `mh-e-5.0.2.tar.Z' in the following fashion:
  259.      % `cd'                                  # Start in your home directory
  260.      % `mkdir lib lib/emacs'                 # Create directory for mh-e
  261.      % `cd lib/emacs'
  262.      % `zcat PATH/TO/mh-e-5.0.2.tar.Z | tar xvf -'    # Extract files
  263.    To use these new files, add the following to `~/.emacs':
  264.      (setq load-path (cons (expand-file-name "~/lib/emacs") load-path))
  265.    That's it!  If you're already running Emacs, please quit that session
  266. and start again to load in the new mh-e.  Check that you're running the
  267. new version with the command `M-x mh-version' after running any mh-e
  268. command.  The distribution comes with a file called `MH-E-NEWS' so you
  269. can see what's new.
  270. File: mh-e,  Node: History,  Next: Changes to mh-e,  Prev: Odds and Ends,  Up: Top
  271. History of mh-e
  272. ***************
  273.    mh-e was originally written by Brian Reid in 1983 and has changed
  274. hands twice since then.  Jim Larus wanted to do something similar for
  275. GNU Emacs, and ended up completely rewriting it that same year.  In
  276. 1989, Stephen Gildea picked it up and is now currently improving and
  277. maintaining it.
  278. * Menu:
  279. * From Brian Reid::
  280. * From Jim Larus::
  281. * From Stephen Gildea::
  282. File: mh-e,  Node: From Brian Reid,  Next: From Jim Larus,  Prev: History,  Up: History
  283. From Brian Reid
  284. ===============
  285.    One day in 1983 I got the flu and had to stay home from work for
  286. three days with nothing to do.  I used that time to write MHE.  The
  287. fundamental idea behind MHE was that it was a "puppeteer" driving the MH
  288. programs underneath it.  MH had a model that the editor was supposed to
  289. run as a subprocess of the mailer, which seemed to me at the time to be
  290. the tail wagging the dog.  So I turned it around and made the editor
  291. drive the MH programs.  I made sure that the UCI people (who were
  292. maintaining MH at the time) took in my changes and made them stick.
  293.    Today, I still use my own version of MHE because I don't at all like
  294. the way that GNU mh-e works and I've never gotten to be good enough at
  295. hacking Emacs Lisp to make GNU mh-e do what I want.  The Gosling-emacs
  296. version of MHE and the GNU Emacs version of mh-e have almost nothing in
  297. common except similar names.  They work differently, have different
  298. conceptual models, and have different key bindings.  (1)
  299.    Brian Reid, June 1994
  300.    ---------- Footnotes ----------
  301.    (1)  After reading this article, I questioned Brian about his
  302. version of MHE, and received some great ideas for improving mh-e such
  303. as a dired-like method of selecting folders; and removing the prompting
  304. when sending mail, filling in the blanks in the draft buffer instead.
  305. I passed them on to Stephen Gildea, the current maintainer, and he was
  306. excited about the ideas as well.  Perhaps one day, mh-e will again
  307. resemble MHE, although none of these ideas are manifest in Version 5.0.
  308. File: mh-e,  Node: From Jim Larus,  Next: From Stephen Gildea,  Prev: From Brian Reid,  Up: History
  309. From Jim Larus
  310. ==============
  311.    Brian Reid, while at CMU or shortly after going to Stanford wrote a
  312. mail reading program called MHE for Gosling Emacs.  It had much the same
  313. structure as mh-e (i.e., invoked MH programs), though it was simpler and
  314. the commands were slightly different.  Unfortunately, I no longer have a
  315. copy so the differences are lost in the mists of time.
  316.    In '82-83, I was working at BBN and wrote a lot of mlisp code in
  317. Gosling Emacs to make it look more like Tennex Emacs.  One of the
  318. packages that I picked up and improved was Reid's mail system.  In '83,
  319. I went back to Berkeley.  About that time, Stallman's first version of
  320. GNU Emacs came out and people started to move to it from Gosling Emacs
  321. (as I recall, the transition took a year or two).  I decided to port
  322. Reid's MHE and used the mlisp to Emacs Lisp translator that came with
  323. GNU Emacs.  It did a lousy job and the resulting code didn't work, so I
  324. bit the bullet and rewrote the code by hand (it was a lot smaller and
  325. simpler then, so it took only a day or two).
  326.    Soon after that, mh-e became part of the standard Emacs distribution
  327. and suggestions kept dribbling in for improvements.  mh-e soon reached
  328. sufficient functionality to keep me happy, but I kept on improving it
  329. because I was a graduate student with plenty of time on my hands and it
  330. was more fun than my dissertation.  In retrospect, the one thing that I
  331. regret is not writing any documentation, which seriously limited the use
  332. and appeal of the package.
  333.    In '89, I came to Wisconsin as a professor and decided not to work on
  334. mh-e.  It was stable, except for minor bugs, and had enough
  335. functionality, so I let it be for a few years.  Stephen Gildea of BBN
  336. began to pester me about the bugs, but I ignored them.  In 1990, he went
  337. off to the X Consortium, said good bye, and said that he would now be
  338. using `xmh'.  A few months later, he came back and said that he
  339. couldn't stand `xmh' and could I put a few more bug fixes into mh-e.
  340. At that point, I had no interest in fixing mh-e, so I gave the
  341. responsibility of maintenance to him and he has done a fine job since
  342. then.
  343.    Jim Larus, June 1994
  344. File: mh-e,  Node: From Stephen Gildea,  Prev: From Jim Larus,  Up: History
  345. From Stephen Gildea
  346. ===================
  347.    In 1987 I went to work for Bolt Beranek and Newman, as Jim had before
  348. me.  In my previous job, I had been using RMAIL, but as my folders tend
  349. to run large, I was frustrated with the speed of RMAIL.  However, I
  350. stuck with it because I wanted the GNU Emacs interface.  I am very
  351. familiar and comfortable with the Emacs interface (with just a few
  352. modifications of my own) and dislike having to use applications with
  353. embedded editors; they never live up to Emacs.
  354.    MH is the mail reader of choice at BBN, so I converted to it.  Since
  355. I didn't want to give up using an Emacs interface, I started using mh-e.
  356. As is my wont, I started hacking on it almost immediately.  I first used
  357. version 3.4m.  One of the first features I added was to treat the folder
  358. buffer as a file-visiting buffer: you could lock it, save it, and be
  359. warned of unsaved changes when killing it.  I also worked to bring its
  360. functionality a little closer to RMAIL.  Jim Larus was very cooperative
  361. about merging in my changes, and my efforts first appeared in version
  362. 3.6, distributed with Emacs 18.52 in 1988.  Next I decided mh-e was too
  363. slow and optimized it a lot.  Version, 3.7, distributed with Emacs 18.56
  364. in 1990, was noticeably faster.
  365.    When I moved to the X Consortium I became the first person there to
  366. not use xmh.  (There is now one other engineer there using mh-e.)  About
  367. this point I took over maintenance of mh-e from Jim and was finally able
  368. to add some features Jim hadn't accepted, such as the backward searching
  369. undo.  My first release was 3.8 (Emacs 18.58) in 1992.
  370.    Now, in 1994, we see a flurry of releases, with both 4.0 and 5.0.
  371. Version 4.0 added many new features, including background folder
  372. collection and support for composing MIME messages.  (Reading MIME
  373. messages remains to be done, alas.)  While writing this book, Bill
  374. Wohler gave mh-e its closest examination ever, uncovering bugs and
  375. inconsistencies that required a new major version to fix, and so version
  376. 5 was released.
  377.    Stephen Gildea, June 1994
  378. File: mh-e,  Node: Changes to mh-e,  Next: Copying,  Prev: History,  Up: Top
  379. Changes to mh-e
  380. ***************
  381.    mh-e had a fairly major facelift between Versions 3 and 4.  The
  382. differences between Versions 4 and 5 from the user's viewpoint are
  383. relatively minor.  The prompting order for the folder and message number
  384. in a couple of functions had been switched inadvertently in Version 4.
  385. Version 5 switches the order back.  The `+inbox' folder is no longer
  386. hard-coded, but rather uses the `Inbox' MH Profile entry.  See the file
  387. `etc/MH-E-NEWS' in the Emacs distribution for more details on the
  388. changes.
  389.    This section documents the changes between Version 3 and newer
  390. versions so that you'll know which commands to use (or which commands
  391. you won't have) in case you're stuck with an old version.
  392.    The following tables summarize the changes to buffer names, commands
  393. and variables.
  394. Buffer Mode Names
  395. =================
  396.      Version 3           Version 4
  397.      
  398.      mh-e folder        MH-Folder
  399.      mh-e scan          MH-Folder
  400.      mh-e show          MH-Folder Show
  401.      Fundamental        MH-Show
  402.      mh-e letter        MH-Letter
  403.      mh-e letter        MH-Pick
  404. Commands
  405. ========
  406.                 Version 3                        Version 4
  407.      
  408.      Function               Command   Command          Function
  409.      
  410.      mh-first-msg           <          M-<               mh-first-msg
  411.      -                      -          M->               mh-last-msg
  412.      mh-show                .          RET               mh-show
  413.      -                      -          ,                 mh-header-display
  414.      mh-reply               a          r                 mh-reply
  415.      mh-redistribute        r          M-d               mh-redistribute
  416.      mh-unshar-msg          -          M-n               mh-store-msg
  417.      mh-write-msg-to-file   M-o        C-o               mh-write-msg-to-file
  418.      mh-delete-msg-from-seq C-u M-%    M-#               mh-delete-seq
  419.      -                      -          M-q               mh-list-sequences
  420.      mh-quit                b          q                 mh-quit
  421.      -                      -          C-C C-f C-r       mh-to-field (`From:')
  422.      -                      -          C-C C-f C-d       mh-to-field (`Dcc:')
  423. Variables
  424. =========
  425.                Version 3                           Version 4
  426.      
  427.      Variable              Value             Value           Variable
  428.      
  429.      mh-show-buffer-      "{%%b}  %s/%d"    "{show-%s} %d"  mh-show-buffer-
  430.      mode-line-buffer-id                                    mode-line-buffer-id
  431.      mh-unshar-default-   ""                nil             mh-store-default-
  432.      directory                                              directory
  433. New Variables
  434. =============
  435.      mail-citation-hook                           mh-new-draft-cleaned-headers
  436.      mail-header-separator                        mh-pick-mode-hook
  437.      mh-auto-folder-collect                       mh-refile-msg-hook
  438.      mh-comp-formfile                             mh-scan-prog
  439.      mh-repl-formfile                             mh-send-prog
  440.      mh-delete-msg-hook                           mh-show-hook
  441.      mh-forward-subject-format                    mh-show-mode-hook
  442.      mh-inc-prog                                  mh-signature-file-name
  443.      mh-mime-content-types                        mh-sortm-args
  444.      mh-default-folder-for-message-function       mh-repl-formfile
  445.      mh-mhn-args
  446. File: mh-e,  Node: Copying,  Next: Command Index,  Prev: Changes to mh-e,  Up: Top
  447. GNU GENERAL PUBLIC LICENSE
  448. **************************
  449.                          Version 2, June 1991
  450.      Copyright (C) 1989, 1991 Free Software Foundation, Inc.
  451.      675 Mass Ave, Cambridge, MA 02139, USA
  452.      
  453.      Everyone is permitted to copy and distribute verbatim copies
  454.      of this license document, but changing it is not allowed.
  455. Preamble
  456. ========
  457.    The licenses for most software are designed to take away your
  458. freedom to share and change it.  By contrast, the GNU General Public
  459. License is intended to guarantee your freedom to share and change free
  460. software--to make sure the software is free for all its users.  This
  461. General Public License applies to most of the Free Software
  462. Foundation's software and to any other program whose authors commit to
  463. using it.  (Some other Free Software Foundation software is covered by
  464. the GNU Library General Public License instead.)  You can apply it to
  465. your programs, too.
  466.    When we speak of free software, we are referring to freedom, not
  467. price.  Our General Public Licenses are designed to make sure that you
  468. have the freedom to distribute copies of free software (and charge for
  469. this service if you wish), that you receive source code or can get it
  470. if you want it, that you can change the software or use pieces of it in
  471. new free programs; and that you know you can do these things.
  472.    To protect your rights, we need to make restrictions that forbid
  473. anyone to deny you these rights or to ask you to surrender the rights.
  474. These restrictions translate to certain responsibilities for you if you
  475. distribute copies of the software, or if you modify it.
  476.    For example, if you distribute copies of such a program, whether
  477. gratis or for a fee, you must give the recipients all the rights that
  478. you have.  You must make sure that they, too, receive or can get the
  479. source code.  And you must show them these terms so they know their
  480. rights.
  481.    We protect your rights with two steps: (1) copyright the software,
  482. and (2) offer you this license which gives you legal permission to copy,
  483. distribute and/or modify the software.
  484.    Also, for each author's protection and ours, we want to make certain
  485. that everyone understands that there is no warranty for this free
  486. software.  If the software is modified by someone else and passed on, we
  487. want its recipients to know that what they have is not the original, so
  488. that any problems introduced by others will not reflect on the original
  489. authors' reputations.
  490.    Finally, any free program is threatened constantly by software
  491. patents.  We wish to avoid the danger that redistributors of a free
  492. program will individually obtain patent licenses, in effect making the
  493. program proprietary.  To prevent this, we have made it clear that any
  494. patent must be licensed for everyone's free use or not licensed at all.
  495.    The precise terms and conditions for copying, distribution and
  496. modification follow.
  497.     TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  498.   0. This License applies to any program or other work which contains a
  499.      notice placed by the copyright holder saying it may be distributed
  500.      under the terms of this General Public License.  The "Program",
  501.      below, refers to any such program or work, and a "work based on
  502.      the Program" means either the Program or any derivative work under
  503.      copyright law: that is to say, a work containing the Program or a
  504.      portion of it, either verbatim or with modifications and/or
  505.      translated into another language.  (Hereinafter, translation is
  506.      included without limitation in the term "modification".)  Each
  507.      licensee is addressed as "you".
  508.      Activities other than copying, distribution and modification are
  509.      not covered by this License; they are outside its scope.  The act
  510.      of running the Program is not restricted, and the output from the
  511.      Program is covered only if its contents constitute a work based on
  512.      the Program (independent of having been made by running the
  513.      Program).  Whether that is true depends on what the Program does.
  514.   1. You may copy and distribute verbatim copies of the Program's
  515.      source code as you receive it, in any medium, provided that you
  516.      conspicuously and appropriately publish on each copy an appropriate
  517.      copyright notice and disclaimer of warranty; keep intact all the
  518.      notices that refer to this License and to the absence of any
  519.      warranty; and give any other recipients of the Program a copy of
  520.      this License along with the Program.
  521.      You may charge a fee for the physical act of transferring a copy,
  522.      and you may at your option offer warranty protection in exchange
  523.      for a fee.
  524.   2. You may modify your copy or copies of the Program or any portion
  525.      of it, thus forming a work based on the Program, and copy and
  526.      distribute such modifications or work under the terms of Section 1
  527.      above, provided that you also meet all of these conditions:
  528.        a. You must cause the modified files to carry prominent notices
  529.           stating that you changed the files and the date of any change.
  530.        b. You must cause any work that you distribute or publish, that
  531.           in whole or in part contains or is derived from the Program
  532.           or any part thereof, to be licensed as a whole at no charge
  533.           to all third parties under the terms of this License.
  534.        c. If the modified program normally reads commands interactively
  535.           when run, you must cause it, when started running for such
  536.           interactive use in the most ordinary way, to print or display
  537.           an announcement including an appropriate copyright notice and
  538.           a notice that there is no warranty (or else, saying that you
  539.           provide a warranty) and that users may redistribute the
  540.           program under these conditions, and telling the user how to
  541.           view a copy of this License.  (Exception: if the Program
  542.           itself is interactive but does not normally print such an
  543.           announcement, your work based on the Program is not required
  544.           to print an announcement.)
  545.      These requirements apply to the modified work as a whole.  If
  546.      identifiable sections of that work are not derived from the
  547.      Program, and can be reasonably considered independent and separate
  548.      works in themselves, then this License, and its terms, do not
  549.      apply to those sections when you distribute them as separate
  550.      works.  But when you distribute the same sections as part of a
  551.      whole which is a work based on the Program, the distribution of
  552.      the whole must be on the terms of this License, whose permissions
  553.      for other licensees extend to the entire whole, and thus to each
  554.      and every part regardless of who wrote it.
  555.      Thus, it is not the intent of this section to claim rights or
  556.      contest your rights to work written entirely by you; rather, the
  557.      intent is to exercise the right to control the distribution of
  558.      derivative or collective works based on the Program.
  559.      In addition, mere aggregation of another work not based on the
  560.      Program with the Program (or with a work based on the Program) on
  561.      a volume of a storage or distribution medium does not bring the
  562.      other work under the scope of this License.
  563.   3. You may copy and distribute the Program (or a work based on it,
  564.      under Section 2) in object code or executable form under the terms
  565.      of Sections 1 and 2 above provided that you also do one of the
  566.      following:
  567.        a. Accompany it with the complete corresponding machine-readable
  568.           source code, which must be distributed under the terms of
  569.           Sections 1 and 2 above on a medium customarily used for
  570.           software interchange; or,
  571.        b. Accompany it with a written offer, valid for at least three
  572.           years, to give any third party, for a charge no more than your
  573.           cost of physically performing source distribution, a complete
  574.           machine-readable copy of the corresponding source code, to be
  575.           distributed under the terms of Sections 1 and 2 above on a
  576.           medium customarily used for software interchange; or,
  577.        c. Accompany it with the information you received as to the offer
  578.           to distribute corresponding source code.  (This alternative is
  579.           allowed only for noncommercial distribution and only if you
  580.           received the program in object code or executable form with
  581.           such an offer, in accord with Subsection b above.)
  582.      The source code for a work means the preferred form of the work for
  583.      making modifications to it.  For an executable work, complete
  584.      source code means all the source code for all modules it contains,
  585.      plus any associated interface definition files, plus the scripts
  586.      used to control compilation and installation of the executable.
  587.      However, as a special exception, the source code distributed need
  588.      not include anything that is normally distributed (in either
  589.      source or binary form) with the major components (compiler,
  590.      kernel, and so on) of the operating system on which the executable
  591.      runs, unless that component itself accompanies the executable.
  592.      If distribution of executable or object code is made by offering
  593.      access to copy from a designated place, then offering equivalent
  594.      access to copy the source code from the same place counts as
  595.      distribution of the source code, even though third parties are not
  596.      compelled to copy the source along with the object code.
  597.   4. You may not copy, modify, sublicense, or distribute the Program
  598.      except as expressly provided under this License.  Any attempt
  599.      otherwise to copy, modify, sublicense or distribute the Program is
  600.      void, and will automatically terminate your rights under this
  601.      License.  However, parties who have received copies, or rights,
  602.      from you under this License will not have their licenses
  603.      terminated so long as such parties remain in full compliance.
  604.   5. You are not required to accept this License, since you have not
  605.      signed it.  However, nothing else grants you permission to modify
  606.      or distribute the Program or its derivative works.  These actions
  607.      are prohibited by law if you do not accept this License.
  608.      Therefore, by modifying or distributing the Program (or any work
  609.      based on the Program), you indicate your acceptance of this
  610.      License to do so, and all its terms and conditions for copying,
  611.      distributing or modifying the Program or works based on it.
  612.   6. Each time you redistribute the Program (or any work based on the
  613.      Program), the recipient automatically receives a license from the
  614.      original licensor to copy, distribute or modify the Program
  615.      subject to these terms and conditions.  You may not impose any
  616.      further restrictions on the recipients' exercise of the rights
  617.      granted herein.  You are not responsible for enforcing compliance
  618.      by third parties to this License.
  619.   7. If, as a consequence of a court judgment or allegation of patent
  620.      infringement or for any other reason (not limited to patent
  621.      issues), conditions are imposed on you (whether by court order,
  622.      agreement or otherwise) that contradict the conditions of this
  623.      License, they do not excuse you from the conditions of this
  624.      License.  If you cannot distribute so as to satisfy simultaneously
  625.      your obligations under this License and any other pertinent
  626.      obligations, then as a consequence you may not distribute the
  627.      Program at all.  For example, if a patent license would not permit
  628.      royalty-free redistribution of the Program by all those who
  629.      receive copies directly or indirectly through you, then the only
  630.      way you could satisfy both it and this License would be to refrain
  631.      entirely from distribution of the Program.
  632.      If any portion of this section is held invalid or unenforceable
  633.      under any particular circumstance, the balance of the section is
  634.      intended to apply and the section as a whole is intended to apply
  635.      in other circumstances.
  636.      It is not the purpose of this section to induce you to infringe any
  637.      patents or other property right claims or to contest validity of
  638.      any such claims; this section has the sole purpose of protecting
  639.      the integrity of the free software distribution system, which is
  640.      implemented by public license practices.  Many people have made
  641.      generous contributions to the wide range of software distributed
  642.      through that system in reliance on consistent application of that
  643.      system; it is up to the author/donor to decide if he or she is
  644.      willing to distribute software through any other system and a
  645.      licensee cannot impose that choice.
  646.      This section is intended to make thoroughly clear what is believed
  647.      to be a consequence of the rest of this License.
  648.   8. If the distribution and/or use of the Program is restricted in
  649.      certain countries either by patents or by copyrighted interfaces,
  650.      the original copyright holder who places the Program under this
  651.      License may add an explicit geographical distribution limitation
  652.      excluding those countries, so that distribution is permitted only
  653.      in or among countries not thus excluded.  In such case, this
  654.      License incorporates the limitation as if written in the body of
  655.      this License.
  656.   9. The Free Software Foundation may publish revised and/or new
  657.      versions of the General Public License from time to time.  Such
  658.      new versions will be similar in spirit to the present version, but
  659.      may differ in detail to address new problems or concerns.
  660.      Each version is given a distinguishing version number.  If the
  661.      Program specifies a version number of this License which applies
  662.      to it and "any later version", you have the option of following
  663.      the terms and conditions either of that version or of any later
  664.      version published by the Free Software Foundation.  If the Program
  665.      does not specify a version number of this License, you may choose
  666.      any version ever published by the Free Software Foundation.
  667.  10. If you wish to incorporate parts of the Program into other free
  668.      programs whose distribution conditions are different, write to the
  669.      author to ask for permission.  For software which is copyrighted
  670.      by the Free Software Foundation, write to the Free Software
  671.      Foundation; we sometimes make exceptions for this.  Our decision
  672.      will be guided by the two goals of preserving the free status of
  673.      all derivatives of our free software and of promoting the sharing
  674.      and reuse of software generally.
  675.                                 NO WARRANTY
  676.  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO
  677.      WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE
  678.      LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
  679.      HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
  680.      WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT
  681.      NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  682.      FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE
  683.      QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
  684.      PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY
  685.      SERVICING, REPAIR OR CORRECTION.
  686.  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  687.      WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY
  688.      MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE
  689.      LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,
  690.      INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
  691.      INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
  692.      DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU
  693.      OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY
  694.      OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN
  695.      ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  696.                       END OF TERMS AND CONDITIONS
  697. How to Apply These Terms to Your New Programs
  698. =============================================
  699.    If you develop a new program, and you want it to be of the greatest
  700. possible use to the public, the best way to achieve this is to make it
  701. free software which everyone can redistribute and change under these
  702. terms.
  703.    To do so, attach the following notices to the program.  It is safest
  704. to attach them to the start of each source file to most effectively
  705. convey the exclusion of warranty; and each file should have at least
  706. the "copyright" line and a pointer to where the full notice is found.
  707.      ONE LINE TO GIVE THE PROGRAM'S NAME AND AN IDEA OF WHAT IT DOES.
  708.      Copyright (C) 19YY  NAME OF AUTHOR
  709.      
  710.      This program is free software; you can redistribute it and/or
  711.      modify it under the terms of the GNU General Public License
  712.      as published by the Free Software Foundation; either version 2
  713.      of the License, or (at your option) any later version.
  714.      
  715.      This program is distributed in the hope that it will be useful,
  716.      but WITHOUT ANY WARRANTY; without even the implied warranty of
  717.      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  718.      GNU General Public License for more details.
  719.      
  720.      You should have received a copy of the GNU General Public License
  721.      along with this program; if not, write to the Free Software
  722.      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  723.    Also add information on how to contact you by electronic and paper
  724. mail.
  725.    If the program is interactive, make it output a short notice like
  726. this when it starts in an interactive mode:
  727.      Gnomovision version 69, Copyright (C) 19YY NAME OF AUTHOR
  728.      Gnomovision comes with ABSOLUTELY NO WARRANTY; for details
  729.      type `show w'.  This is free software, and you are welcome
  730.      to redistribute it under certain conditions; type `show c'
  731.      for details.
  732.    The hypothetical commands `show w' and `show c' should show the
  733. appropriate parts of the General Public License.  Of course, the
  734. commands you use may be called something other than `show w' and `show
  735. c'; they could even be mouse-clicks or menu items--whatever suits your
  736. program.
  737.    You should also get your employer (if you work as a programmer) or
  738. your school, if any, to sign a "copyright disclaimer" for the program,
  739. if necessary.  Here is a sample; alter the names:
  740.      Yoyodyne, Inc., hereby disclaims all copyright
  741.      interest in the program `Gnomovision'
  742.      (which makes passes at compilers) written
  743.      by James Hacker.
  744.      
  745.      SIGNATURE OF TY COON, 1 April 1989
  746.      Ty Coon, President of Vice
  747.    This General Public License does not permit incorporating your
  748. program into proprietary programs.  If your program is a subroutine
  749. library, you may consider it more useful to permit linking proprietary
  750. applications with the library.  If this is what you want to do, use the
  751. GNU Library General Public License instead of this License.
  752. File: mh-e,  Node: Command Index,  Next: Variable Index,  Prev: Copying,  Up: Top
  753. Command Index
  754. *************
  755. * Menu:
  756. * display-time:                         Incorporating.
  757. * mh-burst-digest:                      Reading Digests.
  758. * mh-check-whom:                        Recipients.
  759. * mh-copy-msg:                          Organizing.
  760. * mh-delete-msg-from-seq:               Sequences.
  761. * mh-delete-msg-no-motion:              Deleting.
  762. * mh-delete-msg:                        Deleting.
  763. * mh-delete-seq:                        Sequences.
  764. * mh-do-pick-search:                    Searching.
  765. * mh-edit-again:                        Old Drafts.
  766. * mh-edit-mhn:                          Sending MIME.
  767. * mh-execute-commands <1>:              Customizing Finishing Up.
  768. * mh-execute-commands <1>:              Customizing Incorporating.
  769. * mh-execute-commands:                  Finishing Up.
  770. * mh-extract-rejected-mail:             Old Drafts.
  771. * mh-first-msg:                         Moving Around.
  772. * mh-forward:                           Forwarding.
  773. * mh-fully-kill-draft:                  Killing Draft.
  774. * mh-goto-msg:                          Moving Around.
  775. * mh-inc-folder:                        Incorporating.
  776. * mh-insert-letter:                     Inserting Messages.
  777. * mh-insert-signature:                  Signature.
  778. * mh-insert-signature, example:         Customizing Sending.
  779. * mh-last-msg:                          Moving Around.
  780. * mh-list-folders:                      Organizing.
  781. * mh-list-sequences:                    Sequences.
  782. * mh-mhn-compose-anon-ftp:              FTP.
  783. * mh-mhn-compose-external-compressed-tar: Tar.
  784. * mh-mhn-compose-forw:                  Forwarding MIME.
  785. * mh-mhn-compose-insertion:             Other MIME Objects.
  786. * mh-msg-is-in-seq:                     Sequences.
  787. * mh-narrow-to-seq:                     Sequences.
  788. * mh-next-undeleted-msg:                Moving Around.
  789. * mh-pack-folder:                       Organizing.
  790. * mh-page-digest-backwards:             Reading Digests.
  791. * mh-page-digest:                       Reading Digests.
  792. * mh-page-msg:                          Viewing.
  793. * mh-pipe-msg:                          Files and Pipes.
  794. * mh-previous-page:                     Viewing.
  795. * mh-previous-undeleted-msg:            Moving Around.
  796. * mh-print-msg:                         Printing.
  797. * mh-put-msg-in-seq:                    Sequences.
  798. * mh-quit:                              Finishing Up.
  799. * mh-redistribute:                      Redistributing.
  800. * mh-refile-msg <1>:                    Customizing Organizing.
  801. * mh-refile-msg:                        Organizing.
  802. * mh-refile-or-write-again:             Organizing.
  803. * mh-reply:                             Replying.
  804. * mh-rescan-folder:                     Organizing.
  805. * mh-rescan-folder, example:            Customizing Incorporating.
  806. * mh-revert-mhn-edit:                   Sending MIME.
  807. * mh-rmail <1>:                         Finishing Up.
  808. * mh-rmail <1>:                         Reading Mail.
  809. * mh-rmail:                             Reading Mail Tour.
  810. * mh-rmail, example:                    Customizing Reading.
  811. * mh-search-folder:                     Searching.
  812. * mh-send-letter:                       Sending Message.
  813. * mh-send:                              Sending Mail.
  814. * mh-show:                              Viewing.
  815. * mh-show, example:                     Customizing Incorporating.
  816. * mh-smail-other-window:                Sending Mail.
  817. * mh-smail <1>:                         Sending Mail.
  818. * mh-smail <1>:                         Processing Mail Tour.
  819. * mh-smail:                             Sending Mail Tour.
  820. * mh-sort-folder <1>:                   Customizing Organizing.
  821. * mh-sort-folder:                       Organizing.
  822. * mh-store-buffer:                      Customizing Files and Pipes.
  823. * mh-store-msg <1>:                     Customizing Files and Pipes.
  824. * mh-store-msg:                         Files and Pipes.
  825. * mh-to-fcc <1>:                        Customizing Organizing.
  826. * mh-to-fcc:                            Header.
  827. * mh-to-field <1>:                      Searching.
  828. * mh-to-field:                          Header.
  829. * mh-toggle-showing:                    Moving Around.
  830. * mh-undo-folder:                       Finishing Up.
  831. * mh-undo:                              Finishing Up.
  832. * mh-update-sequences:                  Sequences.
  833. * mh-version:                           Miscellaneous.
  834. * mh-visit-folder:                      Organizing.
  835. * mh-widen:                             Sequences.
  836. * mh-write-msg-to-file:                 Files and Pipes.
  837. * mh-yank-cur-msg:                      Inserting Letter.
  838.